function component
React
関数で記述されたコンポーネントのこと
React Hooksの登場により状態を持てるようになったので, 単にfunction componentと呼ばれるようになった 参考
code:tsx
interface Props {
defaultCount: number
}
functioin Counter(props: Props) {
function handleClick() {
setCount((count) => count + 1)
}
return <button onClick={handleClick}>{count}</button>
}